home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / OptionsPanel.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  437 b   |  34 lines

  1.  
  2. /* $Id: OptionsPanel.h,v 1.1.1.1 1993/03/18 03:34:39 davis Exp $ */
  3.  
  4.  
  5.  
  6. #import <objc/Object.h>
  7.  
  8. @interface OptionsPanel:Object
  9. {
  10.     id        panel;
  11.     id        status;
  12.     BOOL    _textCellChanged;
  13. }
  14.  
  15. - init;
  16.  
  17. - panel;
  18. - showPanel:sender;
  19. - forceUpdate;
  20.  
  21.  
  22. /** Window Delegate Methods **/
  23.  
  24. - windowDidUpdate:sender;
  25.  
  26.  
  27. /** Text Delegate Methods **/
  28.  
  29. - textDidEnd:textObject endChar:(unsigned short)whyEnd;
  30. - (BOOL) textWillChange:textObject;
  31.  
  32.  
  33. @end
  34.